projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8771f2c
)
Avoid underallocations in the custom paper dialog
author
Matthias Clasen
<mclasen@redhat.com>
Fri, 10 Jun 2011 04:15:10 +0000
(
00:15
-0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Fri, 10 Jun 2011 04:17:56 +0000
(
00:17
-0400)
gtk/gtkcustompaperunixdialog.c
patch
|
blob
|
history
diff --git
a/gtk/gtkcustompaperunixdialog.c
b/gtk/gtkcustompaperunixdialog.c
index 500ccad4b5beb27dbb1f0efc1145be3115676558..ffa1adde8edf7d4199f32649214cf24f060e1108 100644
(file)
--- a/
gtk/gtkcustompaperunixdialog.c
+++ b/
gtk/gtkcustompaperunixdialog.c
@@
-376,7
+376,7
@@
_gtk_custom_paper_unix_dialog_new (GtkWindow *parent,
"transient-for", parent,
"modal", parent != NULL,
"destroy-with-parent", TRUE,
-
//
"resizable", FALSE,
+ "resizable", FALSE,
NULL);
return result;
@@
-1214,6
+1214,5
@@
populate_dialog (GtkCustomPaperUnixDialog *dialog)
}
gtk_window_present (GTK_WINDOW (dialog));
-
load_print_backends (dialog);
}